home *** CD-ROM | disk | FTP | other *** search
/ Aminet 37 / Aminet 37 (2000)(Schatztruhe)[!][Jun 2000].iso / Aminet / dev / lang / sofa.lha / sofa / smalleiffel / lib_se / call_proc_call.e < prev    next >
Text File  |  2000-03-25  |  6KB  |  210 lines

  1. --          This file is part of SmallEiffel The GNU Eiffel Compiler.
  2. --          Copyright (C) 1994-98 LORIA - UHP - CRIN - INRIA - FRANCE
  3. --            Dominique COLNET and Suzanne COLLIN - colnet@loria.fr
  4. --                       http://SmallEiffel.loria.fr
  5. -- SmallEiffel is  free  software;  you can  redistribute it and/or modify it
  6. -- under the terms of the GNU General Public License as published by the Free
  7. -- Software  Foundation;  either  version  2, or (at your option)  any  later
  8. -- version. SmallEiffel is distributed in the hope that it will be useful,but
  9. -- WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  10. -- or  FITNESS FOR A PARTICULAR PURPOSE.   See the GNU General Public License
  11. -- for  more  details.  You  should  have  received a copy of the GNU General
  12. -- Public  License  along  with  SmallEiffel;  see the file COPYING.  If not,
  13. -- write to the  Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  14. -- Boston, MA 02111-1307, USA.
  15. --
  16. deferred class CALL_PROC_CALL
  17.    --
  18.    -- Common root for CALL and PROC_CALL.
  19.    --
  20.  
  21. inherit GLOBALS;
  22.  
  23. feature -- Common attributes :
  24.  
  25.    target: EXPRESSION;
  26.          -- Target of the call.
  27.  
  28.    feature_name: FEATURE_NAME;
  29.          -- Written selector name of the call.
  30.  
  31. feature -- Common deferred :
  32.  
  33.    run_feature: RUN_FEATURE is
  34.          -- Non void when runnable if any `run_feature'.
  35.       deferred
  36.       end;
  37.  
  38.    arguments: EFFECTIVE_ARG_LIST is
  39.          -- Arguments of the call if any.
  40.       deferred
  41.       ensure
  42.          Result = Void or else Result.count > 0
  43.       end;
  44.  
  45.    arg_count: INTEGER is
  46.          -- The `arguments' count or 0.
  47.       deferred
  48.       ensure
  49.          Result >= 0
  50.       end;
  51.  
  52. feature -- Common frozen :
  53.  
  54.    frozen collect_c_tmp is
  55.       do
  56.          if run_feature /= Void then
  57.             run_feature.collect_c_tmp;
  58.          end;
  59.          target.collect_c_tmp;
  60.          if arguments /= Void then
  61.             arguments.collect_c_tmp;
  62.          end;
  63.       end;
  64.  
  65.    frozen start_position: POSITION is
  66.       do
  67.          Result := feature_name.start_position;
  68.       end;
  69.  
  70.    use_current, frozen standard_use_current: BOOLEAN is
  71.       do
  72.          if arg_count > 0 then
  73.             Result := arguments.use_current;
  74.          end;
  75.          if Result then
  76.          elseif target.is_current then
  77.             Result := run_feature.use_current;
  78.          else
  79.             Result := target.use_current;
  80.          end;
  81.       end;
  82.  
  83. feature
  84.  
  85.    frozen afd_check is
  86.       local
  87.          rc: RUN_CLASS;
  88.          running: ARRAY[RUN_CLASS];
  89.       do
  90.          if run_feature /= Void then
  91.             rc := target.result_type.run_class;
  92.             running := rc.running;
  93.             if running = Void then
  94.             elseif running.count > 1 then
  95.                switch_collection.update(target,run_feature);
  96.             end;
  97.          end;
  98.          target.afd_check;
  99.          if arg_count > 0 then
  100.             arguments.afd_check;
  101.          end;
  102.       end;
  103.  
  104. feature {RUN_FEATURE_3,RUN_FEATURE_4}
  105.  
  106.    finalize is
  107.          -- For inlining of direct calls on an attribute.
  108.       require
  109.          run_control.boost;
  110.          small_eiffel.is_ready;
  111.          run_feature.current_type.run_class.running.count = 1
  112.       deferred
  113.       ensure
  114.          run_feature.current_type.run_class.at_run_time
  115.       end;
  116.  
  117. feature {NONE}
  118.  
  119.    frozen call_proc_call_c2c is
  120.       do
  121.          cpp.put_cpc(Current);
  122.       end;
  123.  
  124.    frozen call_proc_call_c2jvm is
  125.       do
  126.          jvm.call_proc_call_mapping(Current);
  127.       end;
  128.  
  129.    frozen runnable_expression(expression: EXPRESSION; ct: TYPE): EXPRESSION is
  130.       require
  131.          expression /= Void;
  132.          ct /= Void
  133.       do
  134.          Result := expression.to_runnable(ct);
  135.          if Result = Void then
  136.             eh.add_position(expression.start_position);
  137.             fatal_error("Bad expression.");
  138.          end;
  139.       ensure
  140.          Result /= Void
  141.       end;
  142.  
  143.    frozen runnable_args(args: like arguments; ct: TYPE): like arguments is
  144.       require
  145.          args /= Void;
  146.          ct /= Void
  147.       do
  148.          Result := args.to_runnable(ct);
  149.          if Result = Void then
  150.             eh.add_position(args.start_position);
  151.             fatal_error(fz_bad_argument);
  152.          end;
  153.       ensure
  154.          Result /= Void
  155.       end;
  156.  
  157.    frozen run_feature_for(targ: EXPRESSION; ct: TYPE): RUN_FEATURE is
  158.       require
  159.          targ /= Void
  160.       local
  161.          rc: RUN_CLASS;
  162.          rt: TYPE;
  163.          bc: BASE_CLASS;
  164.       do
  165.          rt := targ.result_type;
  166.          if rt /= Void then 
  167.             rc := rt.run_class;
  168.             if rc /= Void then
  169.                bc := rc.base_class;
  170.                Result := bc.run_feature_for(rc,targ,feature_name,ct);
  171.             end;
  172.          end;
  173.          if Result = Void then
  174.             eh.add_position(feature_name.start_position);
  175.             eh.append("Bad target for this call.");
  176.             eh.print_as_fatal_error;
  177.          end;
  178.       ensure
  179.          Result /= Void
  180.       end;
  181.  
  182.    frozen call_proc_call_stupid_switch(r: ARRAY[RUN_CLASS]): BOOLEAN is
  183.       do
  184.          if arguments = Void then
  185.             Result := true;
  186.          else
  187.             Result := arguments.stupid_switch(r);
  188.          end;
  189.          if Result then
  190.             if target.is_current then
  191.                if small_eiffel.same_base_feature(run_feature,r) then
  192.                   Result := run_feature.stupid_switch(r) /= Void;
  193.                else
  194.                   Result := false;
  195.                end;
  196.             else
  197.                Result := target.stupid_switch(r);
  198.             end;
  199.          end;
  200.       end;
  201.  
  202. invariant
  203.  
  204.    target /= Void;
  205.  
  206.    feature_name /= Void;
  207.  
  208. end -- CALL_PROC_CALL
  209.  
  210.